Skip to content

Commit

Permalink
Phoenix Framework 1.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nicbet committed Nov 9, 2023
1 parent 7dcf74e commit d411554
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: '3'
version: "3"
services:
app:
build:
Expand All @@ -24,12 +24,12 @@ services:
- db

db:
image: postgres:12
image: postgres:14
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
expose:
- '5432'
- "5432"
volumes:
- "database:/var/lib/postgresql/data"

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM elixir:1.14.3-alpine
FROM elixir:1.14.5-alpine

# Build Args
ARG PHOENIX_VERSION=1.7.2
ARG PHOENIX_VERSION=1.7.3

# Apk
RUN apk add bash git inotify-tools nodejs-current npm yarn
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
OWNER = nicbet
IMAGE = phoenix
TAG = $(OWNER)/$(IMAGE)
VERSION = 1.7.2-alpine
VERSION = 1.7.3-alpine

all: test

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ If you are using a recent version of [Visual Studio Code](https://code.visualstu
1. Use [Degit](https://github.com/Rich-Harris/degit) to quickly clone this project as a scaffold for your new project, for example an app called `hello_world`.

```css
npx degit nicbet/docker-phoenix#1.7.2 hello_world
npx degit nicbet/docker-phoenix#1.7.3 hello_world
```

2. Open the `hello_world` folder in Visual Studio Code
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
version: "2"
services:
app:
image: nicbet/phoenix:1.7.2-alpine
image: nicbet/phoenix:1.7.3-alpine
build: .
ports:
- "4000:4000"
Expand Down

0 comments on commit d411554

Please sign in to comment.