diff --git a/102_pixarc/compose.yaml b/102_pixarc/compose.yaml new file mode 100644 index 0000000..a48e17f --- /dev/null +++ b/102_pixarc/compose.yaml @@ -0,0 +1,26 @@ +services: + pixark: + image: parkervcp/pixark-server:latest + restart: unless-stopped + environment: + - SERVER_NAME=DenPix + - SERVER_PASSWORD=${SERVER_PASSWORD} + - ADMIN_PASSWORD=${ADMIN_PASSWORD} + - MAX_PLAYERS=10 + - GAME_PORT=27015 + - QUERY_PORT=27016 + - RCON_PORT=27017 + - TZ=Europe/Paris + volumes: + - /home/docker/pixark:/serverdata + ports: + - 27015:27015/udp + - 27016:27016/udp + - 27017:27017/tcp + networks: + tan-network: + ipv4_address: 10.10.0.112 + +networks: + tan-network: + external: true \ No newline at end of file