We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08cf4a7 commit b324ecbCopy full SHA for b324ecb
website/docker-compose.yml
@@ -0,0 +1,27 @@
1
+version: '3'
2
+
3
+services:
4
+ mariadb:
5
+ image: docker.io/mariadb
6
+ hostname: mariadb
7
+ environment:
8
+ - MYSQL_ROOT_PASSWORD=domjudge
9
+ - MYSQL_USER=domjudge
10
+ - MYSQL_PASSWORD=djpw
11
+ - MYSQL_DATABASE=domjudge
12
+ ports:
13
+ - 13306:3306
14
+ command: --max-connections=1000 --max-allowed-packet=512M
15
+ volumes:
16
+ - /var/lib/mysql
17
+ domjudge:
18
+ image: docker.io/domjudge/domserver
19
+ hostname: domserver
20
21
22
23
24
25
+ - MYSQL_HOST=mariadb
26
27
+ - 8080:80
0 commit comments