This commit is contained in:
Hubert Cornet 2024-05-05 16:00:30 +02:00
parent 6ac26c2c8e
commit 88bb561b39
6 changed files with 60 additions and 2 deletions

View File

@ -52,12 +52,15 @@ docker compose -f docker-compose-traefik.yml up -d
Ouvrir une page web avec l'url : Ouvrir une page web avec l'url :
Pour une utilisation tout seul Pour une utilisation tout seul
http://10.0.4.29:3000 https://10.0.4.29:8443
Pour une utilisation avec Traefik Pour une utilisation avec Traefik
https://Crafty Controller.10.0.4.29.traefik.me`)" https://Crafty.10.0.4.29.traefik.me`)"
##
cat config/default-creds.txt
# More info # More info
- more information on the website [Tips-Of-Mine](https://www.tips-of-mine.fr/) - more information on the website [Tips-Of-Mine](https://www.tips-of-mine.fr/)

View File

@ -6,3 +6,23 @@ networks:
#### SERVICES #### SERVICES
services: services:
crafty:
container_name: crafty_container
image: registry.gitlab.com/crafty-controller/crafty-4:latest
restart: always
environment:
- TZ=Etc/UTC
networks:
- back_network
ports:
- "8000:8000" # HTTP
- "8443:8443" # HTTPS
- "8123:8123" # DYNMAP
- "19132:19132/udp" # BEDROCK
- "25500-25600:25500-25600" # MC SERV PORT RANGE
volumes:
- ./backups:/crafty/backups
- ./logs:/crafty/logs
- ./servers:/crafty/servers
- ./config:/crafty/app/config
- ./import:/crafty/import

View File

@ -6,3 +6,13 @@ networks:
#### SERVICES #### SERVICES
services: services:
map:
image: overv/openstreetmap-tile-server
volumes:
- ./data:/data/database/
networks:
- back_network
ports:
- "8989:80"
command: "run"
restart: unless-stopped

View File

@ -0,0 +1 @@
wget https://download.geofabrik.de/europe/france-240504.osm.pbf

View File

@ -6,3 +6,13 @@ networks:
#### SERVICES #### SERVICES
services: services:
container_name: pwgen
pwgen:
image: 'jocxfin/pwgen:latest'
environment:
- NO_API_CHECK=true
networks:
- back_network
ports:
- '5069:5069'
restart: unless-stopped

View File

@ -6,3 +6,17 @@ networks:
#### SERVICES #### SERVICES
services: services:
slink:
image: anirdev/slink:latest
container_name: slink
environment:
- ORIGIN=https://mondomaine.com
- USER_APPROVAL_REQUIRED=false
- STORAGE_PROVIDER=local
volumes:
- ./data:/app/var/data
- ./images:/app/slink/images
networks:
- back_network
ports:
- "3010:3000"