Skip to content

Commit

Permalink
Merge branch 'master' into 229-themable-components
Browse files Browse the repository at this point in the history
  • Loading branch information
snixtho authored Dec 11, 2023
2 parents a0159c3 + 72072e6 commit 0477d1c
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 26 deletions.
38 changes: 21 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,36 +42,40 @@ services:
trackmania:
image: evotm/trackmania
ports:
- 2351:2350/udp
- 2351:2350/tcp
- "127.0.0.1:5001:5000/tcp" # Be careful opening XMLRPC to other hosts! Only if you really need to.
- 2350:2350/udp
- 2350:2350/tcp
- "5001:5000/tcp" # Be careful opening XMLRPC! Only if you really need to.
environment:
MASTER_LOGIN: "SERVERLOGIN" # Create server credentials at https://players.trackmania.com
MASTER_PASSWORD: "SERVERPASS" # Create server credentials at https://players.trackmania.com
MASTER_LOGIN: "CHANGEME :)" # Create server credentials at https://players.trackmania.com
MASTER_PASSWORD: "CHANGEME :)" # Create server credentials at https://players.trackmania.com
XMLRPC_ALLOWREMOTE: "True"
volumes:
- UserData:/server/UserData
db:
image: mariadb
image: postgres
restart: always
ports:
- "127.0.0.1:3306:3306"
- "5432:5432"
volumes:
- MariaDBData:/var/lib/mysql
- PostgresData:/var/lib/postgresql/data
environment:
MARIADB_ROOT_PASSWORD: CHANGEME
MARIADB_USER: evosc
MARIADB_PASSWORD: evosc123!
MARIADB_DATABASE: evosc
MARIADB_AUTO_UPGRADE: always
adminer:
image: adminer
- POSTGRES_PASSWORD=evosc
#- POSTGRES_USER=CHANGEME :) for a production server please change those values!
#- POSTGRES_DB=CHANGEME :)
pgadmin:
image: dpage/pgadmin4
restart: always
extra_hosts:
- "host.docker.internal:host-gateway"
environment:
PGADMIN_DEFAULT_EMAIL: [email protected]
PGADMIN_DEFAULT_PASSWORD: CHANGEME
ports:
- "127.0.0.1:8081:8080"
- "8081:80"
volumes:
UserData: null
MariaDBData: null
PostgresData: null

```

We also have a documentation of the current code base available at https://evosc.io/.
18 changes: 9 additions & 9 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,24 @@ services:
ports:
- 2350:2350/udp
- 2350:2350/tcp
- "127.0.0.1:5001:5000/tcp" # Be careful opening XMLRPC! Only if you really need to.
- "5001:5000/tcp" # Be careful opening XMLRPC! Only if you really need to.
environment:
MASTER_LOGIN: "testesen"
MASTER_PASSWORD: "g-J3hFG~PAR`X0X8"
MASTER_LOGIN: "CHANGEME :)" # Create server credentials at https://players.trackmania.com
MASTER_PASSWORD: "CHANGEME :)" # Create server credentials at https://players.trackmania.com
XMLRPC_ALLOWREMOTE: "True"
volumes:
- UserData:/server/UserData
db:
image: postgres
restart: always
ports:
- "127.0.0.1:5438:5432"
- "5432:5432"
volumes:
- POSTGRESData:/var/lib/postgresql/data
- PostgresData:/var/lib/postgresql/data
environment:
- POSTGRES_USER=evosc
- POSTGRES_PASSWORD=evosc123!
- POSTGRES_DB=evosc
- POSTGRES_PASSWORD=evosc
#- POSTGRES_USER=CHANGEME :) for a production server please change those values!
#- POSTGRES_DB=CHANGEME :)
pgadmin:
image: dpage/pgadmin4
restart: always
Expand All @@ -35,4 +35,4 @@ services:
- "8081:80"
volumes:
UserData: null
POSTGRESData: null
PostgresData: null

0 comments on commit 0477d1c

Please sign in to comment.