We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8cd95b commit bde04caCopy full SHA for bde04ca
2 files changed
Dockerfile
@@ -1,9 +1,9 @@
1
FROM alpine:3.16
2
3
MAINTAINER Konstantin Makarov <hippik80@gmail.com>
4
-RUN adduser -D developer
+RUN adduser -D dev
5
WORKDIR /app
6
COPY wal-listener .
7
-USER developer
+USER dev
8
9
ENTRYPOINT ["./wal-listener"]
README.md
@@ -28,13 +28,13 @@ Service publishes the following structure.
28
The name of the topic for subscription to receive messages is formed from the prefix of the topic,
29
the name of the database and the name of the table `prefix + schema_table`.
30
31
-```
+```go
32
{
33
ID uuid.UUID # unique ID
34
Schema string
35
Table string
36
Action string
37
- Data map[string]interface{}
+ Data map[string]any
38
EventTime time.Time # commit time
39
}
40
```
0 commit comments