diff options
| author | Andrew Lee <andrew@alee14.me> | 2025-05-04 02:54:13 -0400 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2025-05-04 02:54:13 -0400 |
| commit | 1018891f22b2a59305e656f983f407f9e3a6cb0f (patch) | |
| tree | 0d93de2f1d4b03526ad3de1fe1240117e47437a3 /compose.yml | |
| download | freeso-docker-1018891f22b2a59305e656f983f407f9e3a6cb0f.tar.gz freeso-docker-1018891f22b2a59305e656f983f407f9e3a6cb0f.tar.bz2 freeso-docker-1018891f22b2a59305e656f983f407f9e3a6cb0f.zip | |
Initial commit
Diffstat (limited to 'compose.yml')
| -rw-r--r-- | compose.yml | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/compose.yml b/compose.yml new file mode 100644 index 0000000..e650915 --- /dev/null +++ b/compose.yml @@ -0,0 +1,42 @@ +services: + db: + image: mariadb:10.5 + volumes: + - db:/var/lib/mysql + restart: unless-stopped + environment: + MARIADB_USER: fsoserver + MARIADB_PASSWORD: password + MARIADB_DATABASE: fso + MARIADB_ROOT_PASSWORD: wordpass + ports: + - 3306:3306 + networks: + - freeso + + server: + image: freeso + volumes: + - ./config.json:/app/config.json + - ./game:/app/game + - ./nfs:/app/nfs + restart: unless-stopped + depends_on: + - db + ports: + - 35:35 + - 34:34 + - 9000:9000 + networks: + - freeso + + #bnbso-auth: + # image: bnbso-auth + # ports: + # - "127.0.0.1:3060:3000" + +volumes: + db: +networks: + freeso: + driver: bridge |
