Skip to content

Commit

Permalink
Updated Revive to v5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioassuncao committed Feb 18, 2024
1 parent 4cd35f5 commit 152b966
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSI
&& tar -C /usr/local/bin -xzvf dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \
&& rm dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz

RUN wget -qO- https://download.revive-adserver.com/revive-adserver-5.4.1.tar.gz | tar xz --strip 1 \
RUN wget -qO- https://download.revive-adserver.com/revive-adserver-5.5.1.tar.gz | tar xz --strip 1 \
&& chown -Rf nginx.nginx .

# Expose webserver port
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Revive Adserver
<img src="logo.png" alt="revive">

Docker image Revive Adserver 5.2
Docker image Revive Adserver 5.5

### Setup

Expand Down
20 changes: 6 additions & 14 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,22 @@ services:
app:
build: .
# image: ghcr.io/codions/revive-adserver/revive-adserver:latest
container_name: app
restart: unless-stopped
depends_on:
- mysql
environment:
- ENABLE_SUPERVISOR_GUI=true
- SUPERVISORD_USER=admin
- SUPERVISORD_PASS=secret

volumes:
- ./.docker/nginx/default.conf:/etc/nginx/conf.d/default.conf
- ./.docker/storage/app/www/images:/usr/share/nginx/html/www/images

ports:
- "8080:80"
- "9001:9001"
links:
- mysql
- mailcatcher
- mailpit

mysql:
image: mysql:5.7
container_name: mysql
restart: unless-stopped
ports:
- "3306:3306"
Expand All @@ -38,10 +31,9 @@ services:
volumes:
- ./.docker/storage/mysql:/var/lib/mysql

mailcatcher:
image: codions/mailcatcher
container_name: mailcatcher
restart: unless-stopped
mailpit:
image: axllent/mailpit:latest
restart: always
ports:
- "1025:1025"
- "1080:1080"
- '1025:1025'
- '8025:8025'

0 comments on commit 152b966

Please sign in to comment.