Files
Archive/kepler/compose.yml

29 lines
530 B
YAML
Raw Normal View History

2025-12-09 06:52:43 +00:00
services:
kepler:
build: .
container_name: kepler
restart: unless-stopped
env_file:
- .env
ports:
- "${SERVER_PORT}:${SERVER_PORT}"
- "${RCON_PORT}:${RCON_PORT}"
- "${MUS_PORT}:${MUS_PORT}"
networks:
- habbo-network
kepler-www:
build: ./Kepler-www
container_name: kepler-www
restart: unless-stopped
volumes:
- ./Kepler-www:/var/www/html
ports:
- "8080:80"
networks:
- habbo-network
networks:
habbo-network:
external: true