16 lines
385 B
YAML
16 lines
385 B
YAML
|
services:
|
||
|
highscore-server:
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: Dockerfile
|
||
|
image: git.snrd.eu/sunred/highscore-server:latest
|
||
|
container_name: highscore-server
|
||
|
network_mode: bridge
|
||
|
volumes:
|
||
|
- ./config.toml:/app/config.toml:ro
|
||
|
- ./db:/app/db:rw
|
||
|
ports:
|
||
|
- "127.0.0.1:8080:8080/tcp"
|
||
|
- "[::1]:8080:8080/tcp"
|
||
|
restart: unless-stopped
|