
* Remove LastRun values during upgrade * Add timezone variable to docker-compose files * Release note update to include PR's labeled "note"
40 lines
786 B
YAML
40 lines
786 B
YAML
version: '2'
|
|
services:
|
|
gaseous-server:
|
|
container_name: gaseous-server
|
|
image: gaseousgames/gaseousserver:latest
|
|
restart: unless-stopped
|
|
networks:
|
|
- gaseous
|
|
depends_on:
|
|
- gsdb
|
|
ports:
|
|
- 5198:80
|
|
volumes:
|
|
- gs:/root/.gaseous-server
|
|
environment:
|
|
- TZ=Australia/Sydney
|
|
- dbhost=gsdb
|
|
- dbuser=root
|
|
- dbpass=gaseous
|
|
- igdbclientid=<clientid>
|
|
- igdbclientsecret=<clientsecret>
|
|
gsdb:
|
|
container_name: gsdb
|
|
image: mysql:8
|
|
restart: unless-stopped
|
|
networks:
|
|
- gaseous
|
|
volumes:
|
|
- gsdb:/var/lib/mysql
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=gaseous
|
|
- MYSQL_USER=gaseous
|
|
- MYSQL_PASSWORD=gaseous
|
|
networks:
|
|
gaseous:
|
|
driver: bridge
|
|
volumes:
|
|
gs:
|
|
gsdb:
|