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: .'
|
# To build from source, replace 'image: lissy93/dashy' with 'build: .'
|
||||||
# build: .
|
# build: .
|
||||||
image: lissy93/dashy
|
image: lissy93/dashy
|
||||||
container_name: Dashy
|
container_name: dashy
|
||||||
# Pass in your config file below, by specifying the path on your host machine
|
# Pass in your config file below, by specifying the path on your host machine
|
||||||
# volumes:
|
# volumes:
|
||||||
# - /root/my-config.yml:/app/public/conf.yml
|
# - /root/my-config.yml:/app/public/conf.yml
|
||||||
@@ -25,4 +25,10 @@ services:
|
|||||||
interval: 1m30s
|
interval: 1m30s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 3
|
retries: 3
|
||||||
start_period: 40s
|
start_period: 40s
|
||||||
|
networks:
|
||||||
|
- nginx_network
|
||||||
|
|
||||||
|
networks:
|
||||||
|
nginx_network:
|
||||||
|
driver: bridge
|
||||||
@@ -1,35 +1,45 @@
|
|||||||
version: '2'
|
version: "3"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
gitea:
|
||||||
|
external: false
|
||||||
|
|
||||||
services:
|
services:
|
||||||
web:
|
server:
|
||||||
image: gitea/gitea:latest
|
image: gitea/gitea:1.16.9
|
||||||
container_name: gitea
|
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:
|
volumes:
|
||||||
- gitea_data:/data
|
- gitea_data:/data
|
||||||
ports:
|
ports:
|
||||||
- "3000:3000"
|
- "3000:3000"
|
||||||
- "22:22"
|
- "222:22"
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
- db
|
||||||
restart: always
|
|
||||||
networks:
|
|
||||||
- nginx_network
|
|
||||||
db:
|
db:
|
||||||
image: mariadb:10
|
image: mysql:8
|
||||||
volumes:
|
|
||||||
- gitea_mariadb:/var/lib/mysql
|
|
||||||
restart: always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
- MYSQL_ROOT_PASSWORD=inginf95
|
- MYSQL_ROOT_PASSWORD=gitea
|
||||||
- MYSQL_DATABASE=gitea
|
|
||||||
- MYSQL_USER=gitea
|
- MYSQL_USER=gitea
|
||||||
- MYSQL_PASSWORD=inginf95
|
- MYSQL_PASSWORD=gitea
|
||||||
|
- MYSQL_DATABASE=gitea
|
||||||
networks:
|
networks:
|
||||||
- nginx_network
|
- gitea
|
||||||
|
volumes:
|
||||||
|
- gitea_mysql:/var/lib/mysql
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
gitea_data:
|
gitea_data:
|
||||||
gitea_mariadb:
|
gitea_mysql:
|
||||||
|
|
||||||
networks:
|
|
||||||
nginx_network:
|
|
||||||
driver: bridge
|
|
||||||
@@ -22,6 +22,7 @@ services:
|
|||||||
|
|
||||||
nginx_recipes:
|
nginx_recipes:
|
||||||
image: nginx:mainline-alpine
|
image: nginx:mainline-alpine
|
||||||
|
container_name: tandoor-recipes
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- 8095:80
|
- 8095:80
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ version: '3'
|
|||||||
services:
|
services:
|
||||||
traccar:
|
traccar:
|
||||||
image: traccar/traccar:latest
|
image: traccar/traccar:latest
|
||||||
|
container_name: traccar
|
||||||
restart: always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- "8096:8082"
|
- "8096:8082"
|
||||||
|
|||||||
Reference in New Issue
Block a user