Updated versions for docker files
This commit is contained in:
@@ -5,7 +5,7 @@ services:
|
||||
# To build from source, replace 'image: lissy93/dashy' with 'build: .'
|
||||
# build: .
|
||||
image: lissy93/dashy
|
||||
container_name: Dashy
|
||||
container_name: dashy
|
||||
# Pass in your config file below, by specifying the path on your host machine
|
||||
# volumes:
|
||||
# - /root/my-config.yml:/app/public/conf.yml
|
||||
@@ -26,3 +26,9 @@ services:
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
start_period: 40s
|
||||
networks:
|
||||
- nginx_network
|
||||
|
||||
networks:
|
||||
nginx_network:
|
||||
driver: bridge
|
||||
@@ -1,35 +1,45 @@
|
||||
version: '2'
|
||||
version: "3"
|
||||
|
||||
networks:
|
||||
gitea:
|
||||
external: false
|
||||
|
||||
services:
|
||||
web:
|
||||
image: gitea/gitea:latest
|
||||
server:
|
||||
image: gitea/gitea:1.16.9
|
||||
container_name: gitea
|
||||
environment:
|
||||
- USER_UID=1000
|
||||
- USER_GID=1000
|
||||
- GITEA__database__DB_TYPE=mysql
|
||||
- GITEA__database__HOST=db:3306
|
||||
- GITEA__database__NAME=gitea
|
||||
- GITEA__database__USER=gitea
|
||||
- GITEA__database__PASSWD=gitea
|
||||
restart: always
|
||||
networks:
|
||||
- gitea
|
||||
volumes:
|
||||
- gitea_data:/data
|
||||
ports:
|
||||
- "3000:3000"
|
||||
- "22:22"
|
||||
- "222:22"
|
||||
depends_on:
|
||||
- db
|
||||
restart: always
|
||||
networks:
|
||||
- nginx_network
|
||||
- db
|
||||
|
||||
db:
|
||||
image: mariadb:10
|
||||
volumes:
|
||||
- gitea_mariadb:/var/lib/mysql
|
||||
image: mysql:8
|
||||
restart: always
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=inginf95
|
||||
- MYSQL_DATABASE=gitea
|
||||
- MYSQL_ROOT_PASSWORD=gitea
|
||||
- MYSQL_USER=gitea
|
||||
- MYSQL_PASSWORD=inginf95
|
||||
- MYSQL_PASSWORD=gitea
|
||||
- MYSQL_DATABASE=gitea
|
||||
networks:
|
||||
- nginx_network
|
||||
- gitea
|
||||
volumes:
|
||||
- gitea_mysql:/var/lib/mysql
|
||||
|
||||
volumes:
|
||||
gitea_data:
|
||||
gitea_mariadb:
|
||||
|
||||
networks:
|
||||
nginx_network:
|
||||
driver: bridge
|
||||
gitea_mysql:
|
||||
@@ -22,6 +22,7 @@ services:
|
||||
|
||||
nginx_recipes:
|
||||
image: nginx:mainline-alpine
|
||||
container_name: tandoor-recipes
|
||||
restart: always
|
||||
ports:
|
||||
- 8095:80
|
||||
|
||||
@@ -3,6 +3,7 @@ version: '3'
|
||||
services:
|
||||
traccar:
|
||||
image: traccar/traccar:latest
|
||||
container_name: traccar
|
||||
restart: always
|
||||
ports:
|
||||
- "8096:8082"
|
||||
|
||||
Reference in New Issue
Block a user