Compare commits

...

2 Commits

Author SHA1 Message Date
9a8cbf4d6c typo diverses 2024-02-09 00:16:20 +01:00
141730bc73 typo boxtype 2024-02-09 00:02:04 +01:00
2 changed files with 4 additions and 5 deletions

View File

@ -12,7 +12,7 @@ Vagrant.configure("2") do |config|
# Every Vagrant development environment requires a box. You can search for # Every Vagrant development environment requires a box. You can search for
# boxes at https://vagrantcloud.com/search. # boxes at https://vagrantcloud.com/search.
config.vm.box = "debian/bookworm" config.vm.box = "debian/bookworm64"
config.vm.hostname = "gitea-traefik" config.vm.hostname = "gitea-traefik"
# Disable automatic box update checking. If you disable this, then # Disable automatic box update checking. If you disable this, then

View File

@ -100,7 +100,7 @@ tls:
EOT EOT
cat > gitea.yml <<'EOT' cat > gitea.yml <<-'EOT'
version: '2' version: '2'
volumes: volumes:
@ -123,7 +123,6 @@ services:
- db:/var/lib/mysql - db:/var/lib/mysql
networks: networks:
- gitea - gitea
traefik-enable: false
environment: environment:
- MYSQL_ROOT_PASSWORD=Azerty1+ - MYSQL_ROOT_PASSWORD=Azerty1+
- MYSQL_PASSWORD=Azerty1+ - MYSQL_PASSWORD=Azerty1+
@ -131,7 +130,7 @@ services:
- MYSQL_USER=gitea - MYSQL_USER=gitea
app: app:
image: gitea image: gitea/gitea
container_name: gitea container_name: gitea
restart: always restart: always
# ports: # ports:
@ -155,7 +154,7 @@ services:
- MYSQL_DATABASE=gitea - MYSQL_DATABASE=gitea
- MYSQL_USER=gitea - MYSQL_USER=gitea
- MYSQL_HOST=db:3006 - MYSQL_HOST=db:3006
'EOT' EOT
docker network create proxy docker network create proxy
docker compose -f traefik.yml up -d docker compose -f traefik.yml up -d